home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_05 / 1005041a < prev    next >
Encoding:
Text File  |  1995-11-01  |  599 b   |  25 lines

  1.                    /* Listing 2 */
  2.  
  3. /*****************************************************
  4.            File Name: MATRIX_T.H
  5.        Expanded Name: matrix type
  6.          Description: Include file for MATRIX_T.C
  7. *****************************************************/
  8.  
  9. #if !defined ( MATRIX_T_DEFINED )
  10.  
  11.    typedef double** matrix_t;
  12.  
  13.    matrix_t cr_matrix( size_t NumRow,
  14.          size_t NumCol );
  15.    matrix_t cr_matrix_s( size_t NumRow,
  16.          size_t NumCol );
  17.    void fr_matrix( matrix_t A, size_t NumRow );
  18.    void fr_matrix_s( matrix_t A );
  19.  
  20.    #define MATRIX_T_DEFINED
  21.  
  22. #endif
  23.  
  24. /* End of File */
  25.